home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / thor12.zip / THOR.LHA / rexx / getglobalconfig.thor < prev    next >
Text File  |  1994-03-03  |  1KB  |  38 lines

  1. /*
  2. **  getglobalconfig.thor - script that gets the global config from
  3. **                           THOR and prints it to the screen.
  4. **
  5. **    Will return 0.
  6. **
  7. **    No template except for the command name.
  8. */
  9.  
  10. options results
  11.  
  12. address "THOR.01"
  13.  
  14. GETGLOBALCONFIG
  15.  
  16. say "Global Config:"
  17. say " Savedir.......:" GLOBALCONFIG.SAVEDIR
  18. say " Editor........:" GLOBALCONFIG.EDITORNAME
  19. say " EditorType....:" GLOBALCONFIG.EDITORTYPE
  20. say " QuoteChar.....:" GLOBALCONFIG.QUOTECHAR
  21. say " Tagfile.......:" GLOBALCONFIG.TAGFILE
  22. say " Msgfont.......:" GLOBALCONFIG.MSGFONTNAME
  23. say " ListFont......:" GLOBALCONFIG.LISTFONTNAME
  24. say " GadgetFont....:" GLOBALCONFIG.GADGETFONTNAME
  25. say " FSEFont.......:" GLOBALCONFIG.FSEFONTNAME
  26. say " PubScreenName.:" GLOBALCONFIG.PUBSCREENNAME
  27. say " UserName......:" GLOBALCONFIG.USERNAME
  28. say " Signature.....:" GLOBALCONFIG.SIGNATURE
  29. say " DloadPath.....:" GLOBALCONFIG.DOWNLOADPATH
  30. say " UloadPath.....:" GLOBALCONFIG.UPLOADPATH
  31. say " Buffers.......:" GLOBALCONFIG.BUFFERS
  32. say " BuffSize......:" GLOBALCONFIG.BUFFERSIZE
  33. say " KeepMsg.......:" GLOBALCONFIG.KEEPMSG
  34. say " KeepMsgFlag...:" GLOBALCONFIG.KEEPMSGFLAG
  35. say " KeepTime......:" GLOBALCONFIG.KEEPTIME
  36. say " KeepTimeFlag..:" GLOBALCONFIG.KEEPTIMEFLAG
  37.  
  38.